/******************************************************************************* * Copyright (c) 2000, 2008 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jdt.ui.tests.refactoring.reorg; import junit.framework.Assert; import org.eclipse.jdt.testplugin.JavaProjectHelper; import org.eclipse.jdt.core.IJavaProject; import org.eclipse.jdt.core.IPackageFragmentRoot; public class TestProject { private IJavaProject fTestProject; private IPackageFragmentRoot fSourceFolder; public TestProject() throws Exception { this("TestProject"); } public TestProject(String name) throws Exception { fTestProject= JavaProjectHelper.createJavaProject(name, "bin"); // we must make sure that the performance test are compatible to 2.1.3 & 3.0 so use rt13 Assert.assertTrue("rt not found", JavaProjectHelper.addRTJar13(fTestProject) != null); fSourceFolder= JavaProjectHelper.addSourceContainer(fTestProject, "src"); } public IJavaProject getProject() { return fTestProject; } public IPackageFragmentRoot getSourceFolder() { return fSourceFolder; } public void delete() throws Exception { if (fTestProject != null && fTestProject.exists()) JavaProjectHelper.delete(fTestProject); } }